home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-10-21 | 446 b | 29 lines | [TEXT/CWIE] |
- #include <iostream.h>
-
-
- //--------------------------------------- main()
-
- int main()
- {
- cout << 202 << '\n';
-
- cout.width( 5 );
- cout.fill( 'x' );
- cout.setf( ios::left, ios::adjustfield );
-
- cout << 202 << '\n';
-
- cout.width( 10 );
- cout.fill( '=' );
- cout.setf( ios::internal, ios::adjustfield );
-
- cout << -101 << '\n';
-
- cout.width( 10 );
- cout.fill( '*' );
- cout.setf( ios::right, ios::adjustfield );
-
- cout << "Hello";
-
- return 0;
- }